4353 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 95 / 218
Newer►
  • Être à l'aise avec bash #5 (bash, debian, linux, shell, ssh, truc, ubuntu) - Damien Pobel / blog
    January 1, 2015 at 2:42:17 PM GMT+1 - permalink - archive.org - http://damien.pobel.fr/post/etre-a-l-aise-avec-bash-5
    bash
  • Exploitability: Attaquer ssh avec ssh-agent.
    January 1, 2015 at 2:41:38 PM GMT+1 - permalink - archive.org - http://exploitability.blogspot.fr/2011/10/attaquer-ssh-avec-ssh-agent.html
    security ssh
  • MySQL 5.7 multi-source replication
    January 1, 2015 at 2:41:24 PM GMT+1 - permalink - archive.org - http://www.percona.com/blog/2013/10/02/mysql-5-7-multi-source-replication/
    mysql
  • GNU Awk 4.1: Teaching an Old Bird Some New Tricks, Part II | Linux Journal
    January 1, 2015 at 2:40:56 PM GMT+1 - permalink - archive.org - http://www.linuxjournal.com/content/gnu-awk-41-teaching-old-bird-some-new-tricks-part-ii
    awk
  • Bonne année ! :-)

    1ère bonne résolution : trier le bordel dans mon pocket, supprimer les articles que je ne relirai jamais et shaarliser les autres... ça va être long, c'est parti

    January 1, 2015 at 2:38:41 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?HkqHiw
    pwet
  • Qu’est-ce que les websockets et à quoi ça sert ? | Sam & Max
    January 1, 2015 at 2:30:47 PM GMT+1 - permalink - archive.org - http://sametmax.com/quest-ce-que-les-websockets-et-a-quoi-ca-sert/
    websocket
  • Cassandra Summit 2014: Cyanite — Better Graphite Storage with Apache …
    December 31, 2014 at 10:58:16 AM GMT+1 - permalink - archive.org - http://fr.slideshare.net/planetcassandra/cassandra-summit-2014-cyanite-better-graphite-storage-with-apache-cassandra
    cassandra graphite
  • pyr/cyanite
    December 29, 2014 at 11:03:45 AM GMT+1 - permalink - archive.org - https://github.com/pyr/cyanite
    cassandra graphite
  • linux - Is it possible to get OpenSSH to log the public key that was used in authentication? - Server Fault

    Je préfère cette solution, à savoir passer sshd en VERBOSE.

    L'autre solution consiste à utiliser environment dans le fichier authorized_keys puis à écrire dans un fichier (à l'aide de .bashrc par exemple). Mais l'utilisateur peut modifier ce fichier..

    ssh-keygen -lf /path/to/public_key_file

    December 23, 2014 at 5:15:21 PM GMT+1 - permalink - archive.org - http://serverfault.com/questions/291763/is-it-possible-to-get-openssh-to-log-the-public-key-that-was-used-in-authenticat
    audit ssh
  • thumbnail
    Portal Trick Shots

    Portal <3

    December 23, 2014 at 3:46:54 PM GMT+1 - permalink - archive.org - http://i.imgur.com/4twhj38.gifv
    game portal
  • unix-ninja :: A cheat-sheet for password crackers
    December 22, 2014 at 10:39:40 PM GMT+1 - permalink - archive.org - http://www.unix-ninja.com/p/A_cheat-sheet_for_password_crackers/
    hash password
  • la foret d'oy
    December 22, 2014 at 6:02:22 PM GMT+1 - permalink - archive.org - http://laforetdoy.free.fr/contact.php
    elevage fufu
  • Workshop : 45 minutes pour comprendre Docker avec Jérôme Petazzoni - YouTube

    avec les slides :
    http://fr.slideshare.net/jpetazzo/introduction-to-docker-december-2014-tour-de-france-edition

    http://fr.slideshare.net/jpetazzo/introduction-to-docker-december-2014-tour-de-france-bordeaux-special-edition

    December 20, 2014 at 2:48:52 PM GMT+1 - permalink - archive.org - https://www.youtube.com/watch?v=bXSC3-mrgWA
    conf docker
  • Installation du module Apache rpaf - [Mémo Debian & VDR]

    Ok Ok, ça m'aurait évité de modifier le logformat de mon apache..

    via arnaudb

    December 18, 2014 at 4:26:35 PM GMT+1 - permalink - archive.org - http://www.mn-home.fr/article46.html
    apache reverse
  • Install Docker with OVH kernels on Debian Wheezy | Themecloud tech blog
    December 18, 2014 at 2:32:25 PM GMT+1 - permalink - archive.org - http://tech.themecloud.io/install-docker-with-ovh-kernels-on-debian-wheezy/
    docker ovh wheezy
  • Linux: See Bandwidth Usage Per Process With Nethogs Tool
    December 14, 2014 at 12:57:53 PM GMT+1 - permalink - archive.org - http://www.cyberciti.biz/faq/linux-find-out-what-process-is-using-bandwidth/
    bandwidth networking
  • thumbnail
    etsy/logstash-forwarder

    un listener qui permet d'envoyer un seul evenement logstash pour plusieurs lignes de logs.

    Si on a la main sur le code source, c'est quand meme plus simple de logger en json : 1 ligne = 1 event

    Dans ce cas on peut utiliser le plugin imfile de rsyslog pour surveiller le fichier et envoyer les events :)

    December 11, 2014 at 2:57:39 PM GMT+1 - permalink - archive.org - https://github.com/etsy/logstash-forwarder
    log logstash
  • Un peu de réseau et de debug udp
    Prenons une application ouvre une socket UDP : pour chaque paquet qui arrive, elle va le traiter et passer au suivant. Si le traitement est plus cours que la cadence de reception, tout va bien, on peut travailler en "flux tendu". Pour éviter de perdre des paquets si l'application est trop lente, le kernel entretien des buffers qui ont une taille par defaut et une taille max.

    Pour consulter :
    # sysctl net.core.rmem_default
    # sysctl net.core.rmem_max
    # sysctl net.ipv4.udp_mem
    # net.core.netdev_max_backlog


    En cas de probleme, on peut augmenter la taille de ce buffer. (temporairement avec commande ou /proc/... et définitivement avec /etc/systcl.d/
    sysctl -w net.core.rmem_default=20000000
    sysctl -w net.core.rmem_max=30000000
    sysctl -w net.ipv4.udp_mem='262144 327680 393216'
    sysctl -w net.core.netdev_max_backlog=2000



    Comment savoir qu'on a des drop udp ?

    netstat -su

    Sinon il y a /proc/net/udp qui contient une ligne par socket udp avec le port (attention en hexadecimal), la taille du buffer utilisé, (s'inquiéter si rxqueue est différent de zéro) et enfin la dernière colonne, les drops !

    alors si vous avez des drops, il faut revoir l'application,.
    Augmenter la taille du buffer est utile seulement si ces drops sont du à des "burst" (des pics d'activité qui n'arrivent pas souvent), un plus grand buffer permettra d'absorber ces pics !


    En encore plus interactif : netstat -c --udp -an

    todo : trouver les commandes équivalentes avec ss

    https://github.com/etsy/statsd/issues/318
    https://www.assembla.com/spaces/LogZillaWiki/wiki/UDP_Buffers
    http://answers.splunk.com/answers/7001/udp-drops-on-linux.html
    December 10, 2014 at 3:51:28 PM GMT+1 * - permalink - archive.org - https://links.infomee.fr/?AyHsGA
    drop kernel linux network networking reseau udp
  • Mis apuntes de.. Raspberry Pi entre otros

    ah genial pour balancer du stream sur la tv!

    November 27, 2014 at 9:37:02 PM GMT+1 - permalink - archive.org - http://misapuntesde.com/post.php?id=232
    rasp twitch
  • thumbnail
    Performance Tuning&Tests for the Elasticsearch Output

    Pour envoyer direct dans ES depuis rsyslog

    (se passer de logstash devient donc possible dans certains cas)

    November 27, 2014 at 10:57:15 AM GMT+1 - permalink - archive.org - http://www.rsyslog.com/performance-tuning-elasticsearch/
    elasticsearch logstash rsyslog
Links per page: 20 50 100
◄Older
page 95 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation